home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 July: Mac OS SDK / Dev.CD Jul 96 SDK / Dev.CD Jul 96 SDK1.toast / Development Kits (Disc 1) / OpenDoc Development Framework / ODFDev / ODF / Framewrk / FWPart / Include / FWContng.h < prev    next >
Encoding:
Text File  |  1996-04-25  |  1.6 KB  |  54 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                FWContng.h
  4. //    Release Version:    $ ODF 1 $
  5. //
  6. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #ifndef FWCONTNG_H
  11. #define FWCONTNG_H
  12.  
  13. #ifndef FWCONTNT_H
  14. #include "FWContnt.h"
  15. #endif
  16.  
  17. //========================================================================================
  18. //    Forward Declarations
  19. //========================================================================================
  20.  
  21. class FW_CPart;
  22. class FW_MProxy;
  23. class FW_CEmbeddingFrame;
  24.  
  25. //========================================================================================
  26. //    class FW_CEmbeddingContent
  27. //========================================================================================
  28.  
  29. class FW_CEmbeddingContent : public FW_CContent
  30. {
  31. //----------------------------------------------------------------------------------------
  32. //    Initialization/Destruction
  33. //
  34. public:    
  35.     FW_CEmbeddingContent(Environment* ev, FW_CPart* part);
  36.     virtual ~FW_CEmbeddingContent();
  37.  
  38. //----------------------------------------------------------------------------------------
  39. //    Externalize/Internalize
  40. //
  41. public:    
  42.     virtual FW_MProxy*                IsDataOnlyOneProxy(Environment* ev) const = 0;
  43.     
  44.     virtual void                    SingleEmbeddedFrameInternalized(Environment* ev,
  45.                                                         FW_CEmbeddingFrame* scopeFrame,
  46.                                                         ODPart* odEmbeddedPart, 
  47.                                                         ODFrame* odEmbeddedFrame,
  48.                                                         ODShape* suggestedShape,
  49.                                                         ODTypeToken viewType);
  50. };
  51.  
  52.  
  53. #endif
  54.